DC.load(stringPath, objectData, functionSuccess(domElementToInsert, promiseObject)) Description: Performs a specialized Fetch API call to load external content into DC.container. Returns: DC Object. Note: The objectData setting may be used to customize the Fetch API functionality, as documented within "Help/$A API/Fetch API/get". Example: // Load content from an external resource into DC.container. DC.load("path/src/resource.html", { selector: "#content-section" // Extracts the external element with id="content-section" }); // Load content from an external resource into DC.container and exicute a callback when complete. DC.load("path/src/resource.html", { selector: "#widget" // Extracts the external element with id="widget" }, function(domWidgetElement) { // Do something with domWidgetElement });